/*'wok - 24.3.17 - Tex-Define Web: added stylesheet customized\customized.css, which is empty as default and can be used to customize the installation */

/* wok: make placeholders in grid nearly invisible (depending on backgroud color) */
input::placeholder {
	color: lightgrey;
}	
textarea::placeholder {
	color: lightgrey;
}	
.InTable input::placeholder {
  color: white;
  /*font-size: 1px;*/
}
.InTable textarea::placeholder {
  color: white;
  /*font-size: 1px;*/
}

.main {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

/* Lerros: disable options/download of file-link property "DoNotShowContextMenu"  */
/* .DoNotShowContextMenu .download-file-btn {display: none} */
/* .DoNotShowContextMenu span.more-options-btn {display: none} */

/* wok - 17.9.17 - GridViewStyle: fix the header, fixedHeader*/
/* height of grid body: 100vh - 53px (top of contenWrapper) - 100px (height of thead) - 10px (some space for vertical scrollbar) */
/*
.GridViewStyle thead{display: block; overflow: auto; height: 100px}
.GridViewStyle tbody{display: block; overflow: auto; height:calc(100vh - 53px - 100px - 20px);}
*/


.login-form  {
    background-image: url(../Customized/Shop.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
}
    
.login-container {
    margin: 0 auto;
    max-width: 400px;
    background: rgba(255,255,255,0.9);
    border-radius: 2px;
    border: 2px solid #cacaca;
    padding: 50px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.login-header .caption-with-logo {
    background: url(../resources/images/koppermannlogo.png) no-repeat right center rgba(255,255,255,0);
    
    height: 35px;
    color: #363636;
    font-weight: normal;
    font-family: "Helvetica Neue", Helvetica, Arial;
    font-size: 28px;
    line-height: 35px;
    padding-left: 10px;
    padding-right: 100px;
    margin-bottom: 25px;
    margin-top: 3px;
}


/* wok - blink saveclose-button */
@keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.5;}
}
header #info-panel .saveclose-button {
	text-decoration: blink;
	animation-name: blinker;
	animation-duration: 1.0s;
	animation-iteration-count:infinite;
	animation-timing-function:ease-in-out;
	animation-direction: alternate;
}
